home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / digests / infoham / 940222.txt < prev    next >
Internet Message Format  |  1994-11-13  |  28KB

  1. Date: Tue,  1 Mar 94 14:39:04 PST
  2. From: Info-Hams Mailing List and Newsgroup <info-hams@ucsd.edu>
  3. Errors-To: Info-Hams-Errors@UCSD.Edu
  4. Reply-To: Info-Hams@UCSD.Edu
  5. Precedence: Bulk
  6. Subject: Info-Hams Digest V94 #222
  7. To: Info-Hams
  8.  
  9.  
  10. Info-Hams Digest            Tue,  1 Mar 94       Volume 94 : Issue  222
  11.  
  12. Today's Topics:
  13.                   ARRL--->Online Repeater directory
  14.                    CW trainer for Sun workstation?
  15.                             Hamfest in NJ
  16.                               MicroSmith
  17.                         MODS REQUEST: IC-2330 
  18.           personal communication Australia <-> USA (2 msgs)
  19.                 Software for DOS-PC for decoding Mor 
  20.  
  21. Send Replies or notes for publication to: <Info-Hams@UCSD.Edu>
  22. Send subscription requests to: <Info-Hams-REQUEST@UCSD.Edu>
  23. Problems you can't solve otherwise to brian@ucsd.edu.
  24.  
  25. Archives of past issues of the Info-Hams Digest are available 
  26. (by FTP only) from UCSD.Edu in directory "mailarchives/info-hams".
  27.  
  28. We trust that readers are intelligent enough to realize that all text
  29. herein consists of personal comments and does not represent the official
  30. policies or positions of any party.  Your mileage may vary.  So there.
  31. ----------------------------------------------------------------------
  32.  
  33. Date: Mon, 28 Feb 1994 15:24:48 GMT
  34. From: ihnp4.ucsd.edu!agate!howland.reston.ans.net!cs.utexas.edu!convex!convex!constellation!osuunx.ucc.okstate.edu!olesun!gcouger@network.ucsd.edu
  35. Subject: ARRL--->Online Repeater directory
  36. To: info-hams@ucsd.edu
  37.  
  38. In article <9402281434.AA12050@umassmed.ummed.edu>,
  39. Stephen Baker <sbaker@umassmed.UMMED.EDU> wrote:
  40. >The league publishes the repeater directory which it currently enjoys monopoly
  41. >status.  This must be enormously profitable for them as they are the sole source
  42. >for such a directory, (maps aside).  I wonder if they have priviledged access to
  43. >this information by virtue of some role they play in the frequency coordination
  44. >process?
  45. >
  46. >If this is the case, then there is a conflict of interest issue here, and they
  47. >should not in the repeatern directory business and frequency coordination
  48. >business simultaneously if they will harrass competition.
  49. >
  50. A if you read the editorial in this months QST you will find that the ARRL
  51. is not in the coordnation business it only strongly supports coordination.
  52. I really hate to take up for the ARRL but if they were in the coordinaton
  53. business publishing a directory would be no more of a conflict of interest
  54. than publishing the proceedings of a conference.
  55. Gordon AB5DG
  56.  
  57. ------------------------------
  58.  
  59. Date: Mon, 28 Feb 1994 14:51:14 GMT
  60. From: agate!library.ucla.edu!europa.eng.gtefsd.com!gatech!newsxfer.itd.umich.edu!nntp.cs.ubc.ca!utcsri!newsflash.concordia.ca!sifon!clouso.crim.ca!hobbit.ireq.hydro.qc.ca!barde!@ihnp4.ucsd.edu
  61. Subject: CW trainer for Sun workstation?
  62. To: info-hams@ucsd.edu
  63.  
  64. In article 2@cs.cmu.edu, br@cs.cmu.edu (Bill Ross) writes:
  65. >
  66. >   Anybody know where I can find a morse training program which
  67. >   will run on a sun?
  68. >
  69. >   Thanks!
  70. >   Bill Ross
  71. >   br@cs.cmu.edu
  72.  
  73.  
  74. Here is one program made by John S. Watson  4/29/87.
  75. It works ok, but I prefer SuperMorse on a PC...
  76. Regards,
  77. Clem.
  78. 73
  79. ----------------------------
  80.  
  81.    Clement Vaillancourt,             |    Institut de Recherche d'Hydro-Quebec
  82.    Analyste,                         |    Varennes, P. Quebec, Canada, J3X 1S1
  83.    Informatique scientifique         | Tel:+1 514 652 8238 Fax:+1 514 652 8309
  84.    vaillan@ireq.hydro.qc.ca          |  Radio-amateur: VE2HQJ@VE2CRL.PQ.CAN.NA
  85.  
  86. -----------------------------
  87.  
  88.  
  89. #include <curses.h>
  90. /*
  91.  *  Morse Code Program for Suns    Version 1.0
  92.  *
  93.  *  Here is a little program I wrote that converts standard input
  94.  *  to morse code.  The Sun's bell is used to beep the code.
  95.  *  The speed of the generated beeps vary, depending on the model of Sun.
  96.  *  Speed can be changed with the optional first argument on the command
  97.  *  line: 
  98.  *      
  99.  *           % morse 2     # is twice as fast 
  100.  *           % morse 4     # is 3 times a fast
  101.  *           % morse -2    # is  twice as slow 
  102.  *           % morse -3    # is  3 times a slow 
  103.  *
  104.  *  It can be used across a network with remote shell:
  105.  *
  106.  *           % rsh remote_host morse
  107.  * 
  108.  *  Or with pipes: 
  109.  *
  110.  *           % fortune | morse 
  111.  * 
  112.  *  I have not include all the character set. ( ?, !, -, etc. )
  113.  *  New characters can be easily added to the big case statement in main.
  114.  *   
  115.  *  I don't have time to work with this anymore so don't send the bugs to me.
  116.  *  Send me better versions though :^)
  117.  *
  118.  *  Oh yeah, this works on Suns version 3.2 of the UNIX4.3bsd operating system.
  119.  *  compile with: 
  120.  *                    % cc morse.c -o morse -lcurses -ltermcap
  121.  *  
  122.  *
  123.  *   Have fun!
  124.  *   John S. Watson  4/29/87
  125.  */
  126.  
  127. #include <stdio.h>
  128. #include <sys/types.h>
  129. #include <sys/file.h>
  130. #include <sundev/kbd.h>
  131. #include <sundev/kbio.h>
  132.  
  133. int keyboard;
  134. int scale = 10;
  135. int factor = 1;
  136. FILE *fildes;
  137.  
  138. unit_pause( number)
  139.    int number;
  140. {
  141.    int i;
  142.   
  143. /*
  144.    for ( i = 0; i < number* (int) scale; i++);
  145. */
  146.     usleep(10000*scale*number);
  147. }
  148.  
  149. dit()
  150. {
  151.    int on = KBD_CMD_BELL;
  152.    int off = KBD_CMD_NOBELL;
  153.    int i;
  154.  
  155.    ioctl(keyboard, KIOCCMD, &on);
  156.    unit_pause(1);
  157.    ioctl(keyboard, KIOCCMD, &off);
  158.    unit_pause(1);
  159. }
  160.  
  161.  
  162. da()
  163. {
  164.    int on = KBD_CMD_BELL;
  165.    int off = KBD_CMD_NOBELL;
  166.    int i;
  167.  
  168.    ioctl(keyboard, KIOCCMD, &on);
  169.    unit_pause( 3);
  170.    ioctl(keyboard, KIOCCMD, &off);
  171.    unit_pause( 1);
  172. }
  173.  
  174.  
  175. read_line( buffer)
  176.   char buffer[];
  177. {
  178.   char character;
  179.   int i = 0;
  180.   
  181.   do 
  182.     {
  183.     character = fgetc(fildes);
  184.     if (character == EOF )
  185.         {
  186.         resetty();
  187.         exit(0);
  188.         }
  189.     buffer[i] = character;
  190.     ++i;
  191.     }
  192.   while( character != '\n' );
  193.   
  194.   buffer[ i - 1 ] = '\0';
  195. }
  196.  
  197.  
  198.  
  199. init_keyboard()
  200. {
  201.   keyboard = open("/dev/kbd", O_RDWR, 0666);
  202.   if (keyboard < 0) {
  203.      perror("/dev/kbd");
  204.         resetty();
  205.      exit(1);
  206.      }   
  207.   return( keyboard);
  208. }
  209.  
  210. main(argc, argv)
  211.  int argc;
  212.  char **argv;
  213. {
  214.   int i;
  215.     char c;
  216.   char line[81];
  217.     if (argc < 2 || argc > 3)
  218.     {
  219.         fprintf(stderr,"Usage:%s fichier vitesse\n",argv[0]);
  220.         exit(1);
  221.     }
  222.     fildes=fopen(argv[1],"r");
  223.     factor = 0;
  224.     if (argc == 3)
  225.        factor = atoi( argv[2]);
  226.     scale -= factor;
  227. /*
  228.    if ( factor > 0) 
  229.       scale /= factor;
  230.    else
  231.       scale *= -factor;
  232.  
  233.    if ( (int) scale == 0) {
  234.       fprintf(stderr, "can't go that fast\n");
  235.       exit(0);
  236.    }
  237. */
  238.     initscr();
  239.     crmode();
  240.     nonl();
  241.     noecho();
  242.  
  243.   init_keyboard();
  244.  
  245.  
  246.   while ( 1) {
  247.       read_line( line);
  248.       for ( i = 0; i < strlen( line) ; i++) {
  249.       unit_pause( 4);
  250.       switch( line[i] )
  251.             {
  252.              case 'A' : 
  253.              case 'a' :  dit(); da();
  254.                          break;
  255.              case 'B' : 
  256.              case 'b' :  da(); dit(); dit(); dit();
  257.                          break;
  258.              case 'C' :
  259.              case 'c' :  da(); dit(); da(); dit();
  260.                          break;
  261.              case 'D' :
  262.              case 'd' :  da(); dit(); dit();
  263.                          break;
  264.              case 'E' :
  265.              case 'e' :  dit();
  266.                          break;
  267.              case 'F' :
  268.              case 'f' :  dit(); dit(); da(); dit();
  269.                          break;
  270.              case 'G' :
  271.              case 'g' :  da(); da(); dit();
  272.                          break;
  273.              case 'H' :
  274.              case 'h' :  dit(); dit(); dit(); dit();
  275.                          break;
  276.              case 'I' :
  277.              case 'i' :  dit(); dit();
  278.                          break;
  279.              case 'J' :
  280.              case 'j' :  dit(); da(); da(); da();
  281.                          break;
  282.              case 'K' :
  283.              case 'k' :  da(); dit(); da();
  284.                          break;
  285.              case 'L' :
  286.              case 'l' :  dit(); da(); dit(); dit();
  287.                          break;
  288.              case 'M' :
  289.              case 'm' :  da(); da();
  290.                          break;
  291.              case 'N' :
  292.              case 'n' :  da(); dit();
  293.                          break;
  294.              case 'O' :
  295.              case 'o' :  da(); da(); da();
  296.                          break;
  297.              case 'P' :
  298.              case 'p' :  dit(); da(); da(); dit();
  299.                          break;
  300.              case 'Q' :
  301.              case 'q' :  da(); da(); dit(); da();
  302.                          break;
  303.              case 'R' :
  304.              case 'r' :  dit(); da(); dit();
  305.                          break;
  306.              case 'S' :
  307.              case 's' :  dit(); dit(); dit();
  308.                          break;
  309.              case 'T' :
  310.              case 't' :  da();
  311.                          break;
  312.              case 'U' :
  313.              case 'u' :  dit(); dit(); da();
  314.                          break;
  315.              case 'V' :
  316.              case 'v' :  dit(); dit(); dit(); da();
  317.                          break;
  318.              case 'W' :
  319.              case 'w' :  dit(); da(); da();
  320.                          break;
  321.              case 'X' :
  322.              case 'x' :  da(); dit(); dit(); da();
  323.                          break;
  324.              case 'Y' :
  325.              case 'y' :  da(); dit(); da(); da();  
  326.                          break;
  327.              case 'Z' :
  328.              case 'z' :  da(); da(); dit(); dit();
  329.                          break;
  330.  
  331.              case '0' :  da(); da(); da(); da(); da();
  332.                          break;
  333.  
  334.              case '1' :  dit(); da(); da(); da(); da();
  335.                          break;
  336.  
  337.              case '2' :  dit(); dit(); da(); da(); da();
  338.                          break;
  339.  
  340.              case '3' :  dit(); dit(); dit(); da(); da();
  341.                          break;
  342.  
  343.              case '4' :  dit(); dit(); dit(); dit(); da();
  344.                          break;
  345.  
  346.              case '5' :  dit(); dit(); dit(); dit(); dit();
  347.                          break;
  348.  
  349.              case '6' :  da(); dit(); dit(); dit(); dit();
  350.                          break;
  351.  
  352.              case '7' :  da(); da(); dit(); dit(); dit();
  353.                          break;
  354.  
  355.              case '8' :  da(); da(); da(); dit(); dit();
  356.                          break;
  357.  
  358.              case '9' :  da(); da(); da(); da(); dit();
  359.                          break;
  360.  
  361.              case ',' :  da(); da(); dit(); dit(); da(); da();
  362.                          break;
  363.  
  364.              case '.' :  dit(); da(); dit(); da(); dit(); da();
  365.                          break;
  366.  
  367.              case '?' :  dit(); dit(); da(); da(); dit(); dit();
  368.                          break;
  369.  
  370.              case '-' :  da(); dit(); dit(); dit(); dit(); da();
  371.                          break;
  372.  
  373.              case '/' :  da(); dit(); dit(); da(); dit();
  374.                          break;
  375.  
  376.              case '*' :  dit(); dit(); dit(); da(); dit(); da();
  377.                          break;
  378.  
  379.              /*
  380.               * add new characters here!
  381.               */
  382.              case ' ' : 
  383.              default  :
  384.             unit_pause(5);
  385.             putchar(' ');
  386.             fflush(stdout);
  387.                          break;
  388.              }
  389.         if (line[i] != ' ')
  390.         {
  391.             if (!(c = getch()))
  392.             {
  393.                 putchar('\r');
  394.                 putchar('\n');
  395.                 resetty();
  396.                 exit(1);
  397.             }
  398.             if ( c != line[i])
  399.                 i--;
  400.             else
  401.             {
  402.                 putchar(c);
  403.                 fflush(stdout);
  404.                 unit_pause(2);
  405.             }
  406.         }
  407.      }
  408.     unit_pause(2);
  409.     putchar('\r');
  410.     putchar('\n');
  411.     fflush(stdout);
  412.   }
  413. }
  414.  
  415. ------------------------------
  416.  
  417. Date: 1 Mar 94 21:03:34 GMT
  418. From: news-mail-gateway@ucsd.edu
  419. Subject: Hamfest in NJ
  420. To: info-hams@ucsd.edu
  421.  
  422. One of the first Hamfests this Spring season is the Splitrock ARA
  423. and West Morris Wireless combined event in Denville NJ, Sat. March
  424. 5th at 8 am. Vendors at 6 am. Also VE session starts promptly at 9 am
  425. (1 session only, register starting at 8). If ur in the NNJ/NY Metro
  426. area, take rt 80 to exit 37 to Morris Catholic HS on Morris Ave.,
  427. Denville. talk in on 2 mtrs 146.985 RPT.
  428.  
  429. KC2WE
  430.  
  431. ------------------------------
  432.  
  433. Date: Mon, 28 Feb 1994 18:17:16 GMT
  434. From: news@lanl.gov
  435. Subject: MicroSmith
  436. To: info-hams@ucsd.edu
  437.  
  438. Is there anywhere on the net or a BBS that specializes
  439. in antenna codes. I am looking for the subject code to 
  440. optimize my antenna farmette. The xyl prefers that it does
  441. not grow into a full blown farm.Thanks for any info. 
  442. Gerald Schmitt KC5EGG
  443.  
  444. ------------------------------
  445.  
  446. Date: Sun, 27 Feb 94 00:46:22 GMT
  447. From: netcomsv!netcomsv!skyld!jangus@decwrl.dec.com
  448. Subject: MODS REQUEST: IC-2330 
  449. To: info-hams@ucsd.edu
  450.  
  451. In article <CLupu3.KoI@news.Hawaii.Edu> jherman@uhunix3.uhcc.Hawaii.Edu writes:
  452.  
  453.   [ snip ]
  454.   >
  455.  
  456.   Yup, you're starting to go tit-for-tat and grasping at straws. Also, I
  457.   note that your reply verbiage ratio has gone up. I'd say your agitated.
  458.  
  459.   Thank you for playing. For another flame, please insert 25 cents.
  460.  
  461.  
  462.  Amateur: WA6FWI@WA6FWI.#SOCA.CA.USA.NA  |  "You have a flair for adding
  463. Internet: jangus@skyld.grendel.com       |   a fanciful dimension to any
  464.  US Mail: PO Box 4425 Carson, CA 90749   |   story."
  465.    Phone: 1 (310) 324-6080               |            Peking Noodle Co.
  466.  
  467. ------------------------------
  468.  
  469. Date: Fri, 25 Feb 94 16:34:17 +1000
  470. From: ihnp4.ucsd.edu!sdd.hp.com!think.com!cass.ma02.bull.com!syd.bull.oz.au!brahman!tmx!news.cs.su.oz.au!metro!asstdc.scgt.oz.au!asstdc!active!cheese@network.ucsd.edu
  471. Subject: personal communication Australia <-> USA
  472. To: info-hams@ucsd.edu
  473.  
  474. In <1994Feb21.104420.14516@mel.dit.csiro.au> simonm@koel.mel.dit.CSIRO.AU (Simon McClenahan) writes:
  475. >Hi,
  476. >    I'm trying to find ways to communicate with my fiancee who
  477. >lives in the USA. As I was wandering around the Internet trying to
  478.  
  479. Hmmm, perhaps I should put this in the FAQ :-)
  480.  
  481. Personally I think you'd be better off getting your fiancee to get an account
  482. on one of the public-access Internet sites that abound in that part of the
  483. world, and using e-mail.
  484.  
  485. If you're worried about people tapping into your more intimate thoughts, there's
  486. always PGP. (Using amateur radio would guarantee a wide audience :-) and encryption
  487. is not allowed for us amateurs)
  488.  
  489. Regards,
  490.  
  491. -- 
  492. Mark Cheeseman  cheese@active.asstdc.com.au  Fido: 3:712/412.0 [+61 2 399 9268]
  493. PO Box 199 Alexandria NSW 2015  Ph +61 2 353 0143  Fax +61 2 353 0720 
  494.  
  495. ------------------------------
  496.  
  497. Date: Mon, 28 Feb 1994 15:30:21 GMT
  498. From: ihnp4.ucsd.edu!library.ucla.edu!csulb.edu!csus.edu!netcom.com!grady@network.ucsd.edu
  499. Subject: personal communication Australia <-> USA
  500. To: info-hams@ucsd.edu
  501.  
  502. Mark Cheeseman (cheese@active.asstdc.com.au) wrote:
  503.  
  504. : If you're worried about people tapping into your more intimate thoughts, there's
  505. : always PGP. (Using amateur radio would guarantee a wide audience :-) and encryption
  506. : is not allowed for us amateurs)
  507.  
  508. But PGP key exchange by radio is perfectly OK.
  509.  
  510. -- 
  511. Grady Ward       | compiler of Moby lexicons:        | finger grady@netcom.com
  512. +1 707 826 7715  | Words, Hyphenator, Part-of-Speech |    for more information
  513. (voice/24hr FAX) | Pronunciator, Thesaurus           | 15 E2 AD D3 D1 C6 F3 FC
  514. grady@netcom.com | and Language; all royalty-free    | 58 AC F7 3D 4F 01 1E 2F
  515.  
  516. ------------------------------
  517.  
  518. Date: Sun, 27 Feb 94 00:52:50 GMT
  519. From: netcomsv!netcomsv!skyld!jangus@decwrl.dec.com
  520. Subject: Software for DOS-PC for decoding Mor 
  521. To: info-hams@ucsd.edu
  522.  
  523. In article <9402261220591.pschou.DLITE@delphi.com> pschou@delphi.com writes:
  524.  
  525.   > 
  526.   > HamComm is a good program that will do RTTY as well as Morse. If you
  527.   > can't find it from a local source you can ftp it from ftp.std.com .
  528.   > Here is a desciption from the doc file.
  529.   > 
  530.   >                                 HamComm
  531.   >                               Version 2.0
  532.   >                            October 10th 1991
  533.   >                             W. F. Schroeder
  534.   >                                  DL5YEC
  535.   >
  536.  
  537.   Not the least of which is that it comes with a nice black and white .gif of
  538.   the author.
  539.  
  540.  
  541.  Amateur: WA6FWI@WA6FWI.#SOCA.CA.USA.NA  |  "You have a flair for adding
  542. Internet: jangus@skyld.grendel.com       |   a fanciful dimension to any
  543.  US Mail: PO Box 4425 Carson, CA 90749   |   story."
  544.    Phone: 1 (310) 324-6080               |            Peking Noodle Co.
  545.  
  546. ------------------------------
  547.  
  548. Date: Mon, 28 Feb 1994 15:40:40 GMT
  549. From: ihnp4.ucsd.edu!swrinde!gatech!wa4mei.ping.com!ke4zv!gary@network.ucsd.edu
  550. To: info-hams@ucsd.edu
  551.  
  552. References <1994Feb27.012117.11788@arrl.org>, <1994Feb27.140958.12495@ke4zv.atl.ga.us>, <1994Feb27.205435.7993@arrl.org>
  553. Reply-To : gary@ke4zv.atl.ga.us (Gary Coffman)
  554. Subject : Re: Medium range point-to-point digital links
  555.  
  556. In article <1994Feb27.205435.7993@arrl.org> zlau@arrl.org (Zack Lau (KH6CP)) writes:
  557. >Gary Coffman (gary@ke4zv.atl.ga.us) wrote:
  558. >: Ha, Ha. The problem doesn't come with mounting the gunnplexer, or
  559. >: even aiming them, the problem is making sure they're on frequency
  560. >: and making rated power, and that the detector diodes haven't gone
  561. >: south. Most hams don't have the appropriate test equipment, or the
  562. >: skills to fabricate cheap alterative test equipment. Yeah, yeah,
  563. >: a radar detector can serve as a minimal activity checker, but that's
  564. >: not good enough to set up and maintain a legal and efficient link.
  565. >
  566. >You could be right about that, Gary.  Maybe you can no longer 
  567. >expect people to fabricate blocks of wood to act as attenuators 
  568. >to see which gunnplexers work the best.  I have to admit I cheat 
  569. >on this--if I stick a gunnplexer inside our screen room and close
  570. >the door, the attenuation to one of the lab benches is just right
  571. >for weak signal testing. Incidentally, if you are serious about 
  572. >getting on 10 GHz, the March 10 GHz contest results in QST list 
  573. >a number of stations on the band.  
  574.  
  575. Hickory or pine? :-)
  576.  
  577. I was thinking of more than some crude relative indications, though
  578. that's often useful. But how many amateurs have frequency counters
  579. or spectrum analyzers that cover 10 GHz, or even bolometer power meters? 
  580. I do, but I don't know many others who do. How many are setup to measure
  581. sidelobe responses for optimum feed positioning? Even I'm not set up to
  582. do that properly and have to depend on manufacturer antenna range data. 
  583. How about simple deviation measurements on megabaud+ signals at 10 GHz? 
  584. If we're going to build a reliable national network, we can't be cavalier 
  585. about what frequencies we're using, or the power and performance of our 
  586. systems.
  587.  
  588. Note, I'm not interested *at all* in DXing or contesting. I consider both 
  589. to be the antithesis to the cooperative model needed for effective networking.
  590. While I respect the technical prowess some contesters have shown, I don't
  591. think they have the proper mindset for designing reliable data links. By
  592. their nature, DXing and contesting are based on freak conditions, that
  593. once in a decade band opening, that unusual ducting condition, etc. They 
  594. are not concerned about 7x24 fade margins, or 99% link reliability. Their
  595. goal is to *compete* with their compatriots for score rather than to 
  596. cooperate day in and day out to maintain stable links. I'd be happier 
  597. working with repeater owners whose concern for proper reliable coverage 
  598. zones and 7x24 reliable service to the user community are primary.
  599.  
  600. >: >One of the tricks to making microwave gear resistant to 
  601. >: >interference is to use horn antennas or waveguide in your
  602. >: >input circuit.  They make a very low loss high pass filter.
  603. >: >The waveguide below cutoff effect is quite effective in
  604. >: >reducing low frequency interference.
  605. >
  606. >: Sure, that helps, especially if you use *enough* waveguide. You
  607. >: need at least a 1/4 wave depth at the frequency of the *interference*
  608. >
  609. >Where did you get this idea?  I tried coupling two 10 GHz antennas,
  610. >a scalar dish feed with 9 dB of gain, and a 17 dBi horn, and didn't 
  611. >see it on the spectrum analyzer (at least 70 dB of isolation below
  612. >110 MHz).  I'd love to see a 1 x 1 x 2 inch 2 meter antenna that had
  613. >no meaningful attenuation (size of the feed without the scalar rings).
  614.  
  615. Ok, if you're co-located with a Class B or C FM station, you're going
  616. to have to deal with +50 dbW ERP signals, that's +80 dbm. Even if you get
  617. 70 db isolation, the signal at the diode is still +10 dbm. You've got
  618. to do a lot better than that. A waveguide beyond cutoff is most effective
  619. as a filter if it's length is 1/4-wave or greater at the frequency of
  620. the interfereing source. (Attenuation doesn't get much better once you
  621. pass the 1/4-wave depth.)
  622.  
  623. >The exposed terminal problems is easily fixed--you shield it, just like
  624. >any other piece of electronic equipment you want to work next to an 
  625. >antenna radiating more than a kW.  Unfortunately, even the IF circuitry
  626. >of microwave gear has to be shielded, but this goes with the territory.
  627. >But, shielding is trivial compared to trying to filter out a signal of
  628. >nearly the same frequency.  Thus, I don't expect people to have much 
  629. >luck using 219 MHz for receive on the same tower as a channel 13 
  630. >broadcast station.  As I said before, it doesn't make sense to try
  631. >and do everything on one band--especially since we do have a selection
  632. >to choose from.
  633.  
  634. Yeah, though actually the tough problem is going to be with TV channel 11.
  635. That's the low side image frequency of 219 MHz. That's solvable with high
  636. side injection or an IF above 10.7 MHz. Note I've never said that we should 
  637. do it all on one band. Here in GA we're using a mixture of 222 MHz band and 
  638. 430 MHz band systems in a checkerboard arrangement. I've got a bunch of 
  639. ex-GA Power data repeaters for the 902 MHz band as well. We should use what 
  640. works in a particular situation. My only point here has been that LOS 10 GHz 
  641. is unlikely to work in a *lot* of situations for various reasons that I've 
  642. already detailed in previous postings. Where it *does* work, then it could
  643. be used if the microwave expertise is available to install and maintain
  644. it. Otherwise we're going to have to look to other bands for solutions.
  645.  
  646. Look, we're finding that maintaining a 56 kb link is beyond the capabilities
  647. of a major number of digital enthusiasts. And that's pretty simple stuff
  648. that can be setup with just an ordinary station monitor and a scope. A
  649. national network isn't going to be maintained by people with more general
  650. knowledge or tools than that of the folks who maintain current digis and 
  651. voice repeaters. Most of them are totally lost when it comes to medium or 
  652. wideband data. It's *not* that hard, but we've got a major educational job 
  653. ahead of us to get these people up to speed on these techniques. And we've 
  654. got to offer packaged solutions that require a minimum of external test 
  655. equipment to get up, and to maintain. 
  656.  
  657. The ideal piece of equipment will have indicators built in to indicate 
  658. that it's operating correctly with a clean on-frequency signal, with 
  659. proper modulation, and with undegraded receive sensitivity and selectivity. 
  660. Having a built in CNR meter and discriminator center meter are probably 
  661. mandatory, but that's not enough. You also need at minimum a reference 
  662. marker source of known frequency and strength to check transceiver frequency, 
  663. stability, and sensitivity. When you have two widely separated link ends, 
  664. you must be able to determine if the end you're at is operating correctly 
  665. or not, or if the problem is at the other end. You can't count on having 
  666. service personnel at both ends of a link simultaneously.
  667.  
  668. Gary
  669. -- 
  670. Gary Coffman KE4ZV          |    You make it,     | gatech!wa4mei!ke4zv!gary
  671. Destructive Testing Systems |    we break it.     | uunet!rsiatl!ke4zv!gary
  672. 534 Shannon Way             |    Guaranteed!      | emory!kd4nc!ke4zv!gary 
  673. Lawrenceville, GA 30244     |                     | 
  674.  
  675. ------------------------------
  676.  
  677. Date: Mon, 28 Feb 1994 15:28:30 GMT
  678. From: ihnp4.ucsd.edu!agate!library.ucla.edu!csulb.edu!csus.edu!netcom.com!grady@network.ucsd.edu
  679. To: info-hams@ucsd.edu
  680.  
  681. References <YEE.94Feb18143836@mipgsun.mipg.upenn.edu>, <2733@indep1.chi.il.us>, <rohvm1.mah48d-280294075939@136.141.220.39>
  682. Subject : Re: Probable demise of the online repeater directory project
  683.  
  684. You may want to consult a Copyright Attorney.
  685.  
  686. Lists of facts, in general, are not copyrightable.
  687.  
  688. A particular method of organizing them or of selecting them
  689. may be copyrightable, but can be easily overcome by
  690. re-sorting or reformatting.
  691.  
  692. -- 
  693. Grady Ward       | compiler of Moby lexicons:        | finger grady@netcom.com
  694. +1 707 826 7715  | Words, Hyphenator, Part-of-Speech |    for more information
  695. (voice/24hr FAX) | Pronunciator, Thesaurus           | 15 E2 AD D3 D1 C6 F3 FC
  696. grady@netcom.com | and Language; all royalty-free    | 58 AC F7 3D 4F 01 1E 2F
  697.  
  698. ------------------------------
  699.  
  700. Date: Mon, 28 Feb 1994 16:39:20 GMT
  701. From: ihnp4.ucsd.edu!swrinde!cs.utexas.edu!asuvax!pitstop.mcd.mot.com!mcdphx!schbbs!waters.corp.mot.com.corp.mot.com!user@network.ucsd.edu
  702. To: info-hams@ucsd.edu
  703.  
  704. References <D>, <1994Feb23.221648.9890@picker.com>, <1994Feb26.013233.27156@mnemosyne.cs.du.edu>p.mot.co
  705. Subject : Re: Dayton parking
  706.  
  707. In article <1994Feb26.013233.27156@mnemosyne.cs.du.edu>,
  708. jmaynard@nyx10.cs.du.edu (Jay Maynard) wrote:
  709.  
  710.  
  711. > (Then again, who am I to complain? My DXCC count is nowhere near my weight...)
  712.  
  713. Gee, you mader my day!  My DXCC count exceeds my weight by almost
  714. 20lb/countries :-)
  715.  
  716. Wonder if there is an award for that :-)
  717.  
  718. ------------------------------
  719.  
  720. Date: Mon, 28 Feb 1994 16:53:18 GMT
  721. From: ihnp4.ucsd.edu!sdd.hp.com!swrinde!cs.utexas.edu!asuvax!pitstop.mcd.mot.com!mcdphx!schbbs!waters.corp.mot.com.corp.mot.com!user@network.ucsd.edu
  722. To: info-hams@ucsd.edu
  723.  
  724. References <762082813snx@skyld.grendel.com>, <rcrw90-240294091440@129.188.192.6>, <CLtKxy.9q1@news.Hawaii.Edu>.mot
  725. Subject : Re: RAMSEY FX TRANSCEIVER
  726.  
  727. In article <CLtKxy.9q1@news.Hawaii.Edu>, jherman@uhunix3.uhcc.Hawaii.Edu
  728. (Jeff Herman) wrote:
  729.  
  730. > In article <rcrw90-240294091440@129.188.192.6> rcrw90@email.mot.com (Mike Waters) writes:
  731. > >In article <762082813snx@skyld.grendel.com>, jangus@skyld.grendel.com
  732. > >(Jeffrey D. Angus) wrote:
  733. > >
  734. > >> 
  735. > >>    In article <CLnz3x.I7B@news.Hawaii.Edu> jherman@uhunix3.uhcc.Hawaii.Edu writes:  >
  736. > >>      > That's old news.  BUT the HF maritime CW bands are still jumping with
  737. > >>      > activity and the C.G. is still monitoring them, so CW on the high seas
  738. > >>      > frequencies is still very much in use.
  739.  
  740. > >They are usually easy to spot, they are the loud CW signals that are
  741. > >calling CQ for hours at a time between the ham bands.  Usually next to a
  742. > >SITOR or FAX signal.  Sounds like electronic keyers (or computers :-) to me
  743. > >though - no one sends that regularly by hand for hours at a time.
  744.  
  745. > Foolish.
  746.  
  747. Weak attempt at a flame?
  748.  
  749. > The ships don't xmt on the shore station's frequencies - they
  750. > work QSK - full breakin - using seperate frequencies.
  751. [...]
  752. > You're hearing the CQ tape.
  753. [...]
  754.  
  755. You must tell me how to carry on a QSK conversation when you are running
  756. your CQ tape Jeff.  They must be *highly* skilled operators to do that - I
  757. guess one of the lost arts of radio :-)
  758.  
  759. Strange that the SITOR and FAX stuff seems to be busy passing traffic all
  760. the time even if you can only hear one side of it.
  761.  
  762. ------------------------------
  763.  
  764. End of Info-Hams Digest V94 #222
  765. ******************************
  766.